blob: 0a78f9f8bcdd1c69ab208617c7727816b83c20be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
import Layout from '../../layouts/Layout.astro';
import { Geshem } from '../../components/Geshem';
import '../../styles/global.css';
export const prerender = false;
const { date } = Astro.params;
---
<Layout title="Geshem - Rain Radar History" description="Israel Rain Radar History">
<Geshem client:load date={date} />
</Layout>
|